ChatGPT: write and improve code using AI 您所在的位置:网站首页 visual studio vscode区别 ChatGPT: write and improve code using AI

ChatGPT: write and improve code using AI

2023-03-27 12:10| 来源: 网络整理| 查看: 265

ChatGPT extension for VSCode

Visual Studio Marketplace Version Visual Studio Marketplace Rating (Stars) Visual Studio Marketplace Downloads Github stars

This Visual Studio Code extension allows you to use the ChatGPT API to generate code or natural language responses from OpenAI's ChatGPT to your questions, right within the editor.

Supercharge your coding with AI-powered assistance! Automatically write new code from scratch, ask questions, get explanations, refactor code, find bugs and more 🚀✨

📢 Extension now uses official ChatGPT API! This however means that using the extension now spends your OpenAI account's credits (0.002$/1k tokens). If you don't have any credits on your account, you will receive an error.

To use the free codex models try version using GPT3 instead (marketplace, github)

Links: Visual Studio Marketplace Github Repository Refactoring selected code using chatGPT Features 💡 Ask general questions or use code snippets from the editor to query ChatGPT via an input box in the sidebar 🖱️ Right click on a code selection and run one of the context menu shortcuts automatically write documentation for your code explain the selected code refactor or optimize it find problems with it 💻 View ChatGPT's responses in a panel next to the editor 🚀 See the response as it is being generated in real time 💬 Ask follow-up questions to the response (conversation context is maintained) 📝 Insert code snippets from the AI's response into the active editor by clicking on them Installation

To use this extension, install it from the VSCode marketplace.

After the installation is complete, you will need to add your OpenAI API key to the extension settings in VSCode. To do this, open the Settings panel by going to the File menu and selecting Preferences, then Settings. In the search bar, type ChatGPT to filter the settings list. In the ChatGPT section, enter your API key in the top field

After completing these steps, the extension should be ready to use.

Obtaining API key

To use this extension, you will need an API key from OpenAI. To obtain one, follow these steps:

Go to OpenAI's website. If you don't have an account, you will need to create one or sign up using your Google or Microsoft account. Click on the Create new secret key button. Copy the key and paste it into the API Key field in the extension settings. Building from source (not applicable for VSCode marketplace version)

Update: The model used in this extension was disabled. You can make it work by updating the chatgpt module to the newest version, however it will use GPT-3 instead of ChatGPT which means spending your OpenAI account's credits and worse performance.

To build the extension from source, clone the repository and run npm install to install the dependencies. You have to change some code in chatgpt module because VSCode runtime does not support fetch. Open node_modules/chatgpt/dist/index.js and add the following code at the top of the file:

import fetch from 'node-fetch'

Then remove the following lines (around line 15):

// src/fetch.ts var fetch = globalThis.fetch;

You also need to replace the following part near the top of the file:

// src/tokenizer.ts import { encoding_for_model } from "@dqbd/tiktoken"; var tokenizer = encoding_for_model("text-davinci-003"); function encode(input) { return tokenizer.encode(input); }

with

// src/tokenizer.ts import GPT3TokenizerImport from "gpt3-tokenizer"; var GPT3Tokenizer = typeof GPT3TokenizerImport === "function" ? GPT3TokenizerImport : GPT3TokenizerImport.default; var tokenizer = new GPT3Tokenizer({ type: "gpt3" }); function encode(input) { return tokenizer.encode(input).bpe; }

due to the fact that the @dqbd/tiktoken module is causing problems with the VSCode runtime. If you know how to fix this, please let me know.

Using the Extension

To use the extension, open a text editor in Visual Studio Code and open the ChatGPT panel by clicking on the ChatGPT icon in the sidebar. This will open a panel with an input field where you can enter your prompt or question. By clicking enter, it will be sent to ChatGPT. Its response will be displayed below the input field in the sidebar (note that it may take some time for it to be calculated).

Writing new code using chatGPT

You can also select a code snippet in the editor and then enter a prompt in the side panel, or right-click and select "Ask ChatGPT". The selected code will be automatically appended to your query when it is sent to the AI. This can be useful for generating code snippets or getting explanations for specific pieces of code.

Refactoring selected code using chatGPT

To insert a code snippet from the AI's response into the editor, simply click on the code block in the panel. The code will be automatically inserted at the cursor position in the active editor.

chatGPT explaining selected code

You can select some code in the editor, right click on it and choose one of the following shortcuts from the context menu:

Commands: Ask ChatGPT: will provide a prompt for you to enter any query ChatGPT: Explain selection: will explain what the selected code does ChatGPT: Refactor selection: will try to refactor the selected code ChatGPT: Find problems: looks for problems/errors in the selected code, fixes and explains them ChatGPT: Optimize selection: tries to optimize the selected code

Ask ChatGPT is also available when nothing is selected. For the other four commands, you can customize the exact prompt that will be sent to the AI by editing the extension settings in VSCode Preferences.

Because ChatGPT is a conversational AI, you can ask follow-up questions to the response. The conversation context is maintained between queries, so you can ask multiple questions in a row (this can be disabled in the extension settings.). If you aren't satisfied with an answer and would like to retry the request, click ctrl+shift+p and select Retry ChatGPT request. To reset the conversation context, click ctrl+shift+p and select ChatGPT: Reset Conversation.

Please note that this extension is currently a proof of concept and may have some limitations or bugs. We welcome feedback and contributions to improve the extension. Also check out CodeGPT extension that uses official OpenAI API and also supports other GPT3 models. If you enjoy this extension, please consider buying me a coffee ☕️ to support my work!

Buy Me A Coffee

Credits This wouldn't be possible without OpenAI's ChatGPT The extension makes use of chatgpt-api (by Travis Fischer), which uses unofficial ChatGPT API in order to login and communicate with it. The project was started by mpociot v0.3 inspired by barnesoir/chatgpt-vscode-plugin and gencay/vscode-chatgpt


【本文地址】

公司简介

联系我们

今日新闻

    推荐新闻

    专题文章
      CopyRight 2018-2019 实验室设备网 版权所有